home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / multlang.zip / MMSG.DFM / MMSG.txt
Text File  |  1996-06-10  |  2KB  |  108 lines

  1. object MMsgDlg: TMMsgDlg
  2.   Left = 255
  3.   Top = 155
  4.   Width = 382
  5.   Height = 264
  6.   Caption = 'Message dialogs'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = [fsBold]
  11.   FormStyle = fsMDIChild
  12.   Position = poScreenCenter
  13.   Visible = True
  14.   OnClose = FormClose
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 4
  19.     Top = 4
  20.     Width = 361
  21.     Height = 93
  22.     Alignment = taCenter
  23.     AutoSize = False
  24.     Caption = 
  25.       'The TMultLang component can also translate all buttons and title' +
  26.       's of standard message dialogs like ShowMessage, MessageDlg or In' +
  27.       'putQuery together with the MButtons component. The MButtons comp' +
  28.       'onent subclasses any sub dialog automatically.'
  29.     Font.Color = clBlack
  30.     Font.Height = -13
  31.     Font.Name = 'Arial'
  32.     Font.Style = [fsBold]
  33.     ParentFont = False
  34.   end
  35.   object Label2: TLabel
  36.     Left = 8
  37.     Top = 96
  38.     Width = 357
  39.     Height = 33
  40.     AutoSize = False
  41.     Caption = 
  42.       'Click on any of the buttons below to show a translated message d' +
  43.       'ialog (Title, OK, No, Yes buttons etc)'
  44.     Font.Color = clWindowText
  45.     Font.Height = -11
  46.     Font.Name = 'MS Sans Serif'
  47.     Font.Style = []
  48.     ParentFont = False
  49.   end
  50.   object MultLang1: TMultLang
  51.     Left = 320
  52.     Top = 44
  53.     Width = 37
  54.     Height = 22
  55.     AlignIcon = alLeft
  56.     AlignText = alLeft
  57.     IconMargin = 1
  58.     ItemHeight = 16
  59.     Items.Strings = (
  60.       'English'
  61.       'Swedish')
  62.     ShowIcons = False
  63.     Text = 'English'
  64.     ResizeIcon = False
  65.     TextMargin = 5
  66.     DefaultLanguage = 'English'
  67.     LanguageFile = '%EXEPath%Mdiapp.lan'
  68.     LanguagesData = {}
  69.   end
  70.   object Button1: TButton
  71.     Left = 100
  72.     Top = 140
  73.     Width = 145
  74.     Height = 25
  75.     Caption = 'ShowMessage'
  76.     TabOrder = 1
  77.     OnClick = Button1Click
  78.   end
  79.   object Button2: TButton
  80.     Left = 100
  81.     Top = 172
  82.     Width = 145
  83.     Height = 25
  84.     Caption = 'MessageDlg'
  85.     TabOrder = 2
  86.     OnClick = Button2Click
  87.   end
  88.   object Button3: TButton
  89.     Left = 100
  90.     Top = 204
  91.     Width = 145
  92.     Height = 25
  93.     Caption = 'InputQuery'
  94.     TabOrder = 3
  95.     OnClick = Button3Click
  96.   end
  97.   object MButtons1: TMButtons
  98.     Captions.Strings = (
  99.       'OK|&Accept'
  100.       'Cancel|&Break'
  101.       'Yes|&Yep'
  102.       'No|&No thanks')
  103.     Title = 'Window Title, usually the name of your EXE file'
  104.     Left = 8
  105.     Top = 52
  106.   end
  107. end
  108.